home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Software of the Month Club / Amiga General Interest Volume 222 (1995)(SOMC)(Disk 3 of y)[SMCxxxC30Ix].zip / Amiga General Interest Volume 222 (1995)(SOMC)(Disk 3 of y)[SMCxxxC30Ix].adf / Install_to_Floppy < prev    next >
Text File  |  1995-11-05  |  2KB  |  75 lines

  1. ; $VER: Install Eldritch V1.27 (BETA) (17 September 1995)
  2. ; This script can be distributed with the Eldritch game by
  3. ; James N. Weatherall (WEZ of SCROTUM)
  4.  
  5. ; ask where to install Eldritch
  6. (set @default-dest
  7.  (askdir
  8.    (prompt "Please select the Distribution Disk to install"
  9.            " the system files to. ")
  10.    (help @askdir-help)
  11.    (default "DF0:")
  12.  )
  13. )
  14.  
  15. (working "Installing System fonts:")
  16.  
  17. (makedir (tackon @default-dest "Fonts"))
  18.  
  19. (makedir (tackon @default-dest "C"))
  20.  
  21. (copyfiles
  22.    (prompt "Peridot font")
  23.    (help @copyfiles-help)
  24.    (source "Fonts:peridot")
  25.    (dest (tackon @default-dest "Fonts/peridot"))
  26.    (all)
  27. )
  28.  
  29. (copyfiles
  30.    (prompt "diamond font")
  31.    (help @copyfiles-help)
  32.    (source "Fonts:diamond")
  33.    (dest (tackon @default-dest "Fonts/diamond"))
  34.    (all)
  35. )
  36.  
  37. (copyfiles
  38.    (prompt "Peridot.font")
  39.    (help @copyfiles-help)
  40.    (source "Fonts:peridot.font")
  41.    (dest (tackon @default-dest "Fonts"))
  42. )
  43.  
  44. (copyfiles
  45.    (prompt "diamond.font")
  46.    (help @copyfiles-help)
  47.    (source "Fonts:diamond.font")
  48.    (dest (tackon @default-dest "Fonts"))
  49. )
  50.  
  51. (copylib
  52.    (prompt "Mathtrans.library")
  53.    (help @copylib-help)
  54.    (source "Libs:mathtrans.library")
  55.    (dest (tackon @default-dest "Libs"))
  56.    (confirm)
  57. )
  58.  
  59. (copylib
  60.    (prompt "Diskfont.library")
  61.    (help @copylib-help)
  62.    (source "Libs:diskfont.library")
  63.    (dest (tackon @default-dest "Libs"))
  64.    (confirm)
  65. )
  66.  
  67. (copyfiles
  68.    (prompt "Assign command")
  69.    (help @copyfiles-help)
  70.    (source "C:Assign")
  71.    (dest (tackon @default-dest "C"))
  72. )
  73.  
  74. (exit)
  75.